home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_319 / cnewssrc / cnews.orig.lzh / batch / comp < prev    next >
Text File  |  1989-06-27  |  316b  |  15 lines

  1. #! /bin/sh
  2. # Invoke compress, without silly 2.11-compatible header.
  3. # 12-bit compression is the lowest common denominator among news sites,
  4. # and is often almost as good as the much-more-costly 16-bit compression.
  5.  
  6. compress -b 12
  7. status=$?
  8. case "$status"
  9. in
  10.     2)
  11.     status=0        # compress stupidity
  12.     ;;
  13. esac
  14. exit $status
  15.